From: Jan Djärv Date: Sun, 16 Nov 2003 18:32:34 +0000 (+0000) Subject: Fix in HAVE_X_SM test X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~24980 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=6f458311fd9b75162e09580f03ec3c8483360101;p=emacs.git Fix in HAVE_X_SM test --- diff --git a/ChangeLog b/ChangeLog index 2abd179f5ff..d2d1d0e32ab 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ * configure.in (HAVE_GTK_MULTIDISPLAY): Check if GTK can handle multiple displays. + Wrong number of args to AC_CHECK_LIB for HAVE_X_SM test corrected. 2003-09-23 Dave Love diff --git a/configure.in b/configure.in index 5a3c296d57e..8a4dd5b6e86 100644 --- a/configure.in +++ b/configure.in @@ -2255,7 +2255,7 @@ fi HAVE_X_SM=no if test "${HAVE_X11}" = "yes"; then AC_CHECK_HEADER(X11/SM/SMlib.h, - AC_CHECK_LIB(SM, SmcOpenConnection, HAVE_X_SM=yes, -lICE)) + AC_CHECK_LIB(SM, SmcOpenConnection, HAVE_X_SM=yes, , -lICE)) if test "${HAVE_X_SM}" = "yes"; then AC_DEFINE(HAVE_X_SM, 1, [Define to 1 if you have the SM library (-lSM).])